@charset "ISO-8859-1";

:root{
	--color-primary: #6120D7;
	--color-secondary: #34414B;
	--color-tertiary: #AAB5C3;
	
	--color-white: #ffffff;
	--color-dark: #292929;
	
}

*{
	padding: 0px;
	margin:0px;
	box-sizing: border-box;
}

html{
	font-size: 10px;
}
body{
	font-size: 1.6rem;
	font-family: "poppins", san-serif;
}
a{
	text-decoration: none;
}
header{
	width: 100%;
	height: 120vh;
	background-image: url(../Images/TechImg8.webp);
	background-size: cover;
}
nav{
	width: 100%;
	height: 10rem;
	display: flex;
	align-items: center;
	
}


.nav_logo_box {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 2rem;
    flex: 0 0 auto;
}

.nav_logo {
    display: block;
    max-width: 250px; /* Adjust maximum width as needed */
    height: auto;
    margin-top: 40px;
}
.nav_logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain; /* Ensures the image is contained within the container */
}


.nav_list{
	list-style: none;
	display: flex;
}
.nav_item{
	margin:0rem 0.6rem;
}
.nav_link{
	font-size: 1.8rem;
	color: var(--color-secondary);
	padding: 0.5rem 0.7rem;
}
/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
    padding: 10px;
}

.hamburger .fa-bars {
    font-size: 1.5rem;
    color: #ffffff;
}
@media (max-width: 768px) {
    .nav_list {
        display: none; /* Hide navigation list by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
        padding: 1rem 0;
        
    }

    .nav_list.active {
        display: flex; /* Display when active (opened) */
    }

    .nav_item {
        margin: 1rem 0;
    }

    .nav_link {
        padding: 1rem;
        text-align: center;
        color: #ffffff;
    }

    .hamburger {
        display: block; /* Show hamburger icon */
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1100; /* Ensure hamburger is above the rest of the content */
    }
}

.container{
	max-width: 114rem;
	margin:0 auto;
	padding: 0rem 1.5rem;
}

.header_content{
	width: 100%;
	height: calc(100vh - 9rem);
	display: flex;
	align-items: center;
}

.header_container{
	width: 60%;
}

.header_main_title{
	font-size: 4.8rem;
	color: var(--color-secondary);
	margin-bottom: 2.2rem;
	animation: slide-in 2s ease infinite;
}
@keyframes slide-in {
        0% {
            opacity: 0;
            transform: translateY(-50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

.header_p{
	margin-bottom: 3.2rem;
	
}

.header_btn{
	padding: 1.2rem 2.5rem;
	background-color: var(--color-primary);
	color: var(--color-white);
	border-radius: 10rem;
	font-weight: 600;
}
.drop {
    list-style: none;
    padding: 0;
    margin: 0;
   
}



.nav_link:hover {
    
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 160px;
    border-radius: 4rem;
}

.dropdown li {
    padding: 12px 16px;
}

.dropdown li a {
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown li a:hover {
    background-color: #ddd;
}

.nav_item:hover .dropdown {
    display: block;
}



.about{
	margin-top: 5rem;
	width: 100%;
	display: flex;
	background-color: #FFD700;
}
.about_img{
	width: 40%;
}

.about_img > img{
	width: 100%;
	height: 100%;
}

.about_content{
	padding: 5rem;
	color: var(--color-white);
}
.about_title_secondary{
	color: var(--color-tertiary);
	font-size: 2.2rem;
	margin-top: 1.2rem;
	
}

.about_title_primary{
	font-size: 3.2rem;
	margin-bottom: 2rem;
	
}

.about_p{
	margin-bottom: 3rem;
	font-weight: 400;
}
/*
.about_btn{
	color: var(--color-white);
	font-weight: 600;
}*/
 .video-container {
            width: 200px; /* Set the width of the box */
            height: 200px; /* Set the height of the box */
            overflow: hidden; /* Hide any overflow */
            position: relative;
        }

        .video-container video {
            width: 100%; /* Make video width 100% of the container */
            height: 100%; /* Make video height 100% of the container */
            object-fit: cover; /* Ensure the video covers the container */
        }

        .about_btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
        }
        
              @media (max-width: 768px) {
    .about {
        flex-direction: column;
        align-items: center;
    }

    .about_img,
    .about_content {
        width: 100%;
        padding: 2rem;
    }

    .about_img {
        order: 1;
    }

    .about_content {
        order: 2;
        padding: 2rem;
    }

    .about_content {
        padding: 2rem;
    }
}
/* CSS for WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 1000; /* Ensure it's above other content */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 10px;
        right: 10px;
    }
}


.progress-bar{
	width: 100%;
	height: 15px;
	background-color: var(--color-white);
	border-radius: 10rem;
}
.progress{
	height: 100%;
	background-color: #6120D7;
	width: 0;
	transition: width 0.5s ease;
	border-radius: 10rem;
	
}

.services_top{
	width: 100%;
	display: flex;
}

.services_bars{
	width: 50%;
}

.services_text{
	width: 50%;
	margin-left:3rem;
}

.section{
	margin-top: 10rem;
	
}

.size-6{
	width: 3rem;
	height: 3rem;
}

.services_title{
	margin: 1rem 0rem;
}
.service_p{
	font-size: 1.1em;
}

.services_row{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
	grid-gap:3rem;
	margin-top: 7rem;
}

.service_column{
	text-align: center;
}

.gallery_container {
    width: 90%; /* Adjusted width to be less than 100% */
    margin: 0 auto; /* Center the container */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); /* Adjusted min-width for columns */
    gap: 2rem; /* Gap between gallery items */
}

.gallery_item {
    width: 100%;
    position: relative;
    overflow: hidden; /* Ensure content does not overflow */
    z-index: 0; /* Ensure this is below the text */
}

.gallery_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth transition for the text appearance */
    color: #fff; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 1rem; /* Padding around the text */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center the text within the box */
    z-index: 1; /* Ensure this is above the gallery item */
}

.gallery_title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0; /* Margin below the title */
}

.gallery_p {
    font-size: 1rem;
    margin: 0;
}

.gallery_item > img {
    width: 100%;
    height: 25rem; /* Adjusted height */
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth transition for image zoom */
    z-index: 0; /* Ensure this is below the text */
}

.gallery_item:hover > img {
    transform: scale(1.1); /* Zoom in the image */
}

.gallery_item:hover .gallery_text {
    opacity: 1; /* Show the text */
}

.section_header{
	width: 100%;
	text-align: center;
	margin-bottom: 6rem;
}

.section_title_secondary{
	font-size: 4rem;
}

.review{
	width: 100%;
	box-shadow: 2px 2px 2px 10px rgba(0, 0, 0, 0.4);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	margin-bottom: 10rem;
	background-color: var(--color-tertiary);
}



.review_image{
	width: 40%;
	object-fit: cover;
	height: 25rem;
	
}

.review_content{
	padding: 0rem 2.2rem;
}

.review_title{
	font-size: 3rem;
	margin-bottom: 2rem;
}

.review_p{
	margin-bottom: 1.5rem;
}

.review_user_name{
	font-size: 2.2rem;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      width: 100%;
      font-size: 18px;
      background: #fff;
      display: flex;
     
    }

.team{
	width: 100%;
	background-image: url(../Images/pattern.avif);
	background-size: cover;
	background-repeat: no-repeat;
}

.team_container{
	padding: 7rem 0rem;
}

.team_header{
	width: 100%;
	display: flex;
	margin-bottom: 4rem;
}

.team_header_title{
	width: 40%;
}

.team_header_title > h3{
	font-size: 2.3rem;
}

.team_header_title > h2{
	font-size: 3.6rem;
}

.team_header_text{
	width: 55%;
	margin-left: 3rem;
	
}

.team_row{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
	grid-gap: 5rem;
}

.team_member_img{
	width: 100%;
	height: 30rem;
	object-fit: cover;
	border-radius: 1rem;
}
.team_user{
	width: 100%;
	display: flex;
	align-items: center;
	padding: 1.5rem 0rem;
	
}

.team_user_name{
	margin-right: 1.5rem;
}

.subscribe{
	width: 100%;
	background-image: url(../Images/tree.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.subscribe_container{
	padding: 6rem 0rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5rem;
}

.subscribe_heading{
	color: var(--color-white);
}
.subscribe_form{
	background-color: var(--color-white);
	padding: .6rem 0rem 0.6rem 1rem;
	border-radius: 10rem;
}

.subscribe_btn{
	background-color: var(--color-primary);
	padding: 0.8rem 1.1rem;
	color: var(--color-white);
	border-top-right-radius: 10rem;
	border-bottom-right-radius: 10rem;
}

.subscribe_form_input{
	outline: none;
	border: none;
	padding: 0.5rem;
}

.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.footer-column p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 0.5rem 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ddd;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-icons a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ddd;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }
}

